home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / pc / pcf / ds.dir / 00214.ls < prev    next >
Encoding:
Text File  |  1995-10-08  |  611 b   |  29 lines

  1. on enterFrame
  2.   global comp
  3.   repeat with x = 3 to 8
  4.     if rollOver(x) = 1 then
  5.       puppetSprite(x, 1)
  6.       set the visible of sprite x to 1
  7.       puppetSprite(x, 0)
  8.     end if
  9.     if rollOver(x) = 0 then
  10.       puppetSprite(x, 1)
  11.       set the visible of sprite x to 0
  12.       puppetSprite(x, 0)
  13.     end if
  14.   end repeat
  15.   if rollOver(20) = 1 then
  16.     puppetSprite(20, 1)
  17.     set the visible of sprite 20 to 1
  18.     puppetSprite(20, 0)
  19.   end if
  20.   if rollOver(20) = 0 then
  21.     puppetSprite(20, 1)
  22.     set the visible of sprite 20 to 0
  23.     puppetSprite(20, 0)
  24.   end if
  25.   if comp then
  26.     compilemov()
  27.   end if
  28. end
  29.